home *** CD-ROM | disk | FTP | other *** search
/ Super PC 31 / Super PC 31 (Shareware).iso / spc / inter / winpm223 / forms / cryptxor / makefile < prev    next >
Encoding:
Makefile  |  1995-10-21  |  419 b   |  24 lines

  1. #
  2. #  WinPMail makefile
  3. #  Pegasus Mail System, (c) 1990-95, David Harris,
  4. #  all rights reserved.
  5. #
  6.  
  7. CC = bcc
  8. WINCC = bcc
  9. TLINK = tlink
  10. WINFLAGS = -ml -v -WDE -O1 -d -w -w-pin
  11. CFLAGS = -I\pmail\include -ml -v -w -w-pin -d -O1 -Z
  12.  
  13. .c.obj:
  14.    $(WINCC) -c $(WINFLAGS) $<
  15.  
  16. .asm.obj:
  17.    tasm /z /ml $<
  18.  
  19. cryptxor: cryptxor.dll
  20.  
  21. cryptxor.dll: cryptxor.obj encrypt.obj
  22.    tlink /Twd /v /m @cryptxor.rsp
  23.  
  24.